From 19fd09725a9e58f7ef1952427b778950f881ca5b Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Mon, 3 Jan 2000 23:55:33 +0000 Subject: [PATCH] A little script that lets people update the .pot file without makefiles 2000-01-04 Kjartan Maraas * update.sh: A little script that lets people update the .pot file without makefiles etc. --- po/ChangeLog | 5 +++++ po/update.sh | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100755 po/update.sh diff --git a/po/ChangeLog b/po/ChangeLog index f988d9fcc6..2a335959fb 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,8 @@ +2000-01-04 Kjartan Maraas + + * update.sh: A little script that lets people + update the .pot file without makefiles etc. + 1999-12-23 Fatih Demir * tr.po: Added the Turkish translation , edited ../configure.in & makefile.cygwin . diff --git a/po/update.sh b/po/update.sh new file mode 100755 index 0000000000..265a42b0a0 --- /dev/null +++ b/po/update.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +xgettext --default-domain=gtk+ --directory=.. \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=./POTFILES.in \ +&& test ! -f gtk+.po \ + || ( rm -f ./gtk+.pot \ + && mv gtk+.po ./gtk+.pot ) -- 2.30.2